home *** CD-ROM | disk | FTP | other *** search
/ Aminet 40 / Aminet 40 (2000)(Schatztruhe)[!][Dec 2000].iso / Aminet / dev / lang / Python16_Src.lha / Python16_Source / Objects / protos / tupleobject.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-09-10  |  637 b   |  13 lines

  1. static void tupledealloc ( PyTupleObject *op );
  2. static int tupleprint ( PyTupleObject *op , FILE *fp , int flags );
  3. static PyObject *tuplerepr ( PyTupleObject *v );
  4. static int tuplecompare ( PyTupleObject *v , PyTupleObject *w );
  5. static long tuplehash ( PyTupleObject *v );
  6. static int tuplelength ( PyTupleObject *a );
  7. static PyObject *tupleitem ( PyTupleObject *a , int i );
  8. static PyObject *tupleslice ( PyTupleObject *a , int ilow , int ihigh );
  9. static PyObject *tupleconcat ( PyTupleObject *a , PyObject *bb );
  10. static PyObject *tuplerepeat ( PyTupleObject *a , int n );
  11. static int tuplecontains ( PyTupleObject *a , PyObject *el );
  12.  
  13.